home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 41.zip / BS1 part 41 / LASER braun-scwartz.adf / ljp / README < prev   
Text File  |  2018-01-21  |  1KB  |  35 lines

  1. The LaserJet Plus driver currently supports three special commands.
  2.  
  3. landscape    Indicates that this job is to be printed with the
  4.         long edge of the sheet horizontal.
  5. include foo.bar    Inserts the contents of the file foo.bar directly
  6.         into the output stream to the printer, after first
  7.         making the current position in the printer the
  8.         current position on the page.
  9. "data...    Inserts data... directly into the output stream to
  10.         the printer, after making the current position in
  11.         the printer the current position on the page.  Note
  12.         that \TeX\ scans data..., so carriage returns get
  13.         turned into spaces and the like.
  14.         To insert binary data, use the format
  15.  
  16.             @xxxxxxxxxxxx
  17.  
  18.         where each pair of x's is interpreted as hexadecimal.
  19.         The first pair of non-hexadecimal x's ends the stream,
  20.         and restarts literal processing.  For instance,
  21.  
  22.             \special{"This is data}
  23.  
  24.         inserts `This is data', exactly.
  25.  
  26.             \special{"@1fSome more data}
  27.  
  28.         inserts `ESCSome more data'.
  29.  
  30.             \special{"@01020304}
  31.  
  32.         inserts four bytes, with binary values of 1, 2, 3, and 4.
  33.  
  34. Enjoy!
  35.